home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 4 / The 640 Meg Shareware Studio CD-ROM Volume IV (Data Express)(1994).ISO / clang / cujaug93.zip / 1108120A < prev    next >
Text File  |  1993-05-23  |  253b  |  19 lines

  1.  1: struct X
  2.  2:     {
  3.  3:     static int i;   // 3
  4.  4:     struct Y
  5.  5:         {
  6.  6:         int i;      // 2
  7.  7:         void f();
  8.  8:         };
  9.  9:     };
  10. 10: 
  11. 11: int i;              // 4
  12. 12: 
  13. 13: void X::Y::f()
  14. 14:     {
  15. 15:     int i;          // 1
  16. 16:     i = 5;
  17. 17:     }
  18.  
  19.